/* ========================================
   CUSTOM FONTS
   ======================================== */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   ROOT VARIABLES & RESET
   ======================================== */

:root {
    /* Main Colors */
    --primary-color: #045418;
    --primary-light: #0a7a25;
    --primary-dark: #023310;
    --primary-transparent: rgba(4, 84, 24, 0.9);
    
    /* Secondary Colors */
    --secondary-color: #f4f4f4;
    --accent-gold: #d4af37;
    --accent-gold-light: #e6c84e;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-gray: #555;
    --text-light: #777;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-gray: #e8e8e8;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 12px 32px rgba(4, 84, 24, 0.25);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* ========================================
   HEADER
   ======================================== */

header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '⛳';
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 20px;
    color: var(--accent-gold);
    margin-top: 3px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease forwards;
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */

.golf-decoration {
    position: relative;
    overflow: hidden;
}

.golf-decoration::before {
    content: '🏌️';
    position: absolute;
    font-size: 120px;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.golf-ball-pattern {
    position: relative;
}

.golf-ball-pattern::after {
    content: '⛳';
    position: absolute;
    font-size: 80px;
    opacity: 0.05;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 25px;
        box-shadow: var(--shadow-md);
        transition: var(--transition-fast);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '⛳';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 84, 24, 0.1), transparent);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Why Enestyball Section */
.why-enestyball {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 100%);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.services-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(4, 84, 24, 0.1));
}

.services-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.services-image:hover img {
    transform: scale(1.05);
}

.services-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.services-list {
    margin-bottom: 35px;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.services-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.services-list strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.services-list p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '🏆';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.cta-section::after {
    content: '🏌️';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 18px;
    padding: 16px 40px;
}

.cta-content .btn:hover {
    background: var(--accent-gold-light);
    transform: translateY(-5px) scale(1.05);
}

/* Responsive for Home Page */
@media (max-width: 768px) {
    .hero-content,
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text h2 {
        font-size: 18px;
    }
    
    .hero-image img,
    .services-image img {
        height: 350px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .services-content {
        grid-template-columns: 1fr;
    }
    
    .services-image {
        order: -1;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero Section */
.about-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(4, 84, 24, 0.15));
}

.about-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

.about-hero-text h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-hero-text h2 {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-hero-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--bg-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-choose-card {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 2px solid transparent;
    text-align: center;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.why-choose-icon {
    font-size: 70px;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.15) rotate(-5deg);
}

.why-choose-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 100%);
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 35px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-gold));
    transform: scaleY(0);
    transition: var(--transition-fast);
}

.value-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-md);
}

.value-item:hover::before {
    transform: scaleY(1);
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
    min-width: 80px;
}

.value-details h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-details p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-image {
        order: -1;
    }
    
    .about-hero-image img {
        height: 350px;
    }
    
    .about-hero-text h1 {
        font-size: 36px;
    }
    
    .about-hero-text h2 {
        font-size: 18px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .value-number {
        min-width: auto;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero Section */
.services-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.services-hero-image:hover img {
    transform: scale(1.05);
}

.services-hero-text h1 {
    font-size: 46px;
    color: var(--text-white);
    margin-bottom: 25px;
}

.services-hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Services List Section */
.services-list-section {
    background: var(--bg-light);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-detailed-card {
    background: var(--bg-white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
}

.service-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.1;
}

.service-icon-large {
    font-size: 70px;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-fast);
}

.service-detailed-card:hover .service-icon-large {
    transform: scale(1.15) rotate(5deg);
}

.service-detailed-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.service-features {
    margin-bottom: 30px;
    padding-left: 0;
}

.service-features li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 10px;
    position: relative;
}

.service-pricing {
    background: linear-gradient(135deg, var(--bg-light), var(--secondary-color));
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.price-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.service-detailed-card .btn {
    width: 100%;
    justify-content: center;
}

/* Why Services Section */
.why-services-section {
    background: var(--bg-white);
}

.why-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-service-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, var(--bg-light), var(--secondary-color));
    border-radius: 15px;
    transition: var(--transition-fast);
}

.why-service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.why-service-icon {
    font-size: 60px;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.why-service-item:hover .why-service-icon {
    transform: scale(1.2) rotate(-10deg);
}

.why-service-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-service-item p {
    font-size: 15px;
    color: var(--text-light);
}

/* Responsive for Services Page */
@media (max-width: 768px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-hero-image {
        order: -1;
    }
    
    .services-hero-image img {
        height: 300px;
    }
    
    .services-hero-text h1 {
        font-size: 36px;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .why-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero Section */
.contact-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.contact-hero-image:hover img {
    transform: scale(1.05);
}

.contact-hero-text h1 {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-hero-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Info Section */
.contact-info-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--bg-light), var(--secondary-color));
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.contact-detail-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

.contact-text a {
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.opening-hours {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.opening-hours h3 {
    font-size: 22px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    font-size: 15px;
}

.time {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--bg-light);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--bg-gray);
    border-radius: 10px;
    transition: var(--transition-fast);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(4, 84, 24, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px;
}

/* Map Section */
.map-section {
    margin-top: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
    transition: var(--transition-fast);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-image {
        order: -1;
    }
    
    .contact-hero-image img {
        height: 300px;
    }
    
    .contact-hero-text h1 {
        font-size: 36px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .map-container {
        height: 350px;
    }
}

/* ========================================
   LEGAL PAGES STYLES (Privacy & Terms)
   ======================================== */

.legal-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.legal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.legal-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.legal-intro {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition-fast);
    border-left: 5px solid var(--primary-color);
}

.legal-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.legal-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.legal-block h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-block p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.legal-block a:hover {
    color: var(--primary-light);
}

.legal-list {
    list-style: none;
    padding-left: 0;
}

.legal-list li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.legal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.legal-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.legal-cta p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 36px;
    }
    
    .legal-intro {
        font-size: 16px;
    }
    
    .legal-block {
        padding: 30px 25px;
    }
    
    .legal-block h2 {
        font-size: 24px;
    }
    
    .legal-cta {
        padding: 40px 25px;
    }
    
    .legal-cta p {
        font-size: 18px;
    }
}

